home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
batchut
/
enqr_25.zip
/
enq-test.bat
< prev
next >
Wrap
DOS Batch File
|
1994-05-18
|
288b
|
23 lines
echo off
rem use to test the effects of options...
enquire %1 %2 %3 %4 %5 %6 %7 %8 %9 "\nDoes this thing work? "
if errorlevel 2 goto yes
if errorlevel 1 goto error
:no
echo Exitlevel 0
goto exit
:yes
echo Exitlevel 2
goto exit
:error
echo Exitlevel 1
:exit